body {
    margin: 0;
    font-family: "Mukta", sans-serif;
    background-color: black;
    background-image: url("pattern.svg");
    background-size: 17px;
}

.brand {
    margin: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-style: italic;
}

.content {
    flex: 1;
    padding: 20px;
}





.navbar {
    color: rgb(0, 0, 0);
    padding: 7px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar {
    position: relative; /* Stelle sicher, dass die Navbar positioniert ist, um das Pseudo-Element richtig zu positionieren */
    background: rgb(255, 255, 255); /* Transparenter Hintergrund der Navbar */
  }

.navbar::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Positioniere den Streifen direkt unter der Navbar */
    left: 0;
    width: 100%;
    height: 7px; /* Höhe des Streifens */
    background: linear-gradient(to left, #e8d31a 0%, rgba(255, 255, 255, 0) 100%); /* Verlauf von transparent zu halb-transparent */
  }

.navlogo {
    height: 60px;
    width: 120px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    margin: 5px;
    padding: 0;
}

.navbar ul li {
    margin-right: 40px;
}

.navbar a {
    position: relative;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: inline-block; /* Damit das ::after korrekt positioniert werden kann */
  }
  

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%; /* Startbreite */
    height: 2px; /* Höhe der Unterstreichung */
    background-color: black; /* Farbe der Unterstreichung */
    transition: width 0.3s ease; /* Glatter Übergang */
  }

  .navbar a:hover::after {
    width: 100%; /* Endbreite bei Hover */
  }

.navbar {
    margin: none;
}





footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffffff; /* Dunkler Hintergrund für den Footer */
    color: rgb(0, 0, 0); /* Helle Schriftfarbe */
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 45px; /* Positioniere den Streifen direkt unter der Navbar */
    left: 0;
    width: 100%;
    height: 4px; /* Höhe des Streifens */
    background: linear-gradient(to left, #e8d31a 0%, rgba(255, 255, 255, 0) 100%); /* Verlauf von transparent zu halb-transparent */
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    /* Wenn du möchtest, dass die Links etwas Abstand vom rechten Rand haben */
    margin-right: 35px;
}

footer a {
    color: rgb(0, 0, 0);
    margin-left: 15px;
    text-decoration: none;
}





/* Mobile menu is hidden on desktop view by default */
.mobile-menu,
.mobile-nav {
    padding: 4px;
    display: none;
}

/* Styles for mobile view */
@media (max-width: 768px) {
    .mobile-nav {
        display: none; /* Update: Kein "display: block;" hier */
        animation-duration: 0.5s; /* Dauer der Animation */
        /* Weitere Styles für mobile-nav */
    }

    .navbar ul {
        display: none;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
    }

    .mobile-nav {
        display: none; /* Initially hide the mobile menu */
        background: #00000000;
        background-color: #ffffff;
        margin: 20px;
        padding: 5px;
    }

    .mobile-nav a {
        display: block;
        color: rgb(0, 0, 0);
        border-bottom: 1px solid #303030;
        text-decoration: none;
        margin: 20px;
        padding: 5px;
    }

    .container {
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Stellt sicher, dass der Container mindestens so hoch wie der Viewport ist */
        padding-bottom: 50px; /* Gleich oder größer als die Höhe deines Footers, verhindert Überlappung */
    }  
}